home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / bfd / reloc16.c < prev    next >
C/C++ Source or Header  |  1994-09-09  |  8KB  |  293 lines

  1. /* 8 and 16 bit COFF relocation functions, for BFD.
  2.    Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  3.    Written by Cygnus Support.
  4.  
  5. This file is part of BFD, the Binary File Descriptor library.
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. /* 
  22. Most of this hacked by  Steve Chamberlain,
  23.             sac@cygnus.com 
  24. */
  25.  
  26. /* These routines are used by coff-h8300 and coff-z8k to do
  27.    relocation.
  28.  
  29.    FIXME: This code should be rewritten to support the new COFF
  30.    linker.  Basically, they need to deal with COFF relocs rather than
  31.    BFD generic relocs.  They should store the relocs in some location
  32.    where coff_link_input_bfd can find them (and coff_link_input_bfd
  33.    should be changed to use this location rather than rereading the
  34.    file) (unless info->keep_memory is false, in which case they should
  35.    free up the relocs after dealing with them).  */
  36.  
  37. #include "bfd.h"
  38. #include "sysdep.h"
  39. #include "obstack.h"
  40. #include "libbfd.h"
  41. #include "bfdlink.h"
  42. #include "genlink.h"
  43. #include "coff/internal.h"
  44. #include "libcoff.h"
  45.  
  46. bfd_vma
  47. bfd_coff_reloc16_get_value (reloc, link_info, input_section)
  48.      arelent *reloc;
  49.      struct bfd_link_info *link_info;
  50.      asection *input_section;
  51. {
  52.   bfd_vma value;
  53.   asymbol *symbol = *(reloc->sym_ptr_ptr);
  54.   /* A symbol holds a pointer to a section, and an offset from the
  55.      base of the section.  To relocate, we find where the section will
  56.      live in the output and add that in */
  57.  
  58.   if (bfd_is_und_section (symbol->section))
  59.     {
  60.       struct bfd_link_hash_entry *h;
  61.  
  62.       /* The symbol is undefined in this BFD.  Look it up in the
  63.      global linker hash table.  FIXME: This should be changed when
  64.      we convert this stuff to use a specific final_link function
  65.      and change the interface to bfd_relax_section to not require
  66.      the generic symbols.  */
  67.       h = bfd_link_hash_lookup (link_info->hash, bfd_asymbol_name (symbol),
  68.                 false, false, true);
  69.       if (h != (struct bfd_link_hash_entry *) NULL
  70.       && h->type == bfd_link_hash_defined)
  71.     value = (h->u.def.value
  72.          + h->u.def.section->output_section->vma
  73.          + h->u.def.section->output_offset);
  74.       else if (h != (struct bfd_link_hash_entry *) NULL
  75.            && h->type == bfd_link_hash_common)
  76.     value = h->u.c.size;
  77.       else
  78.     {
  79.       if (! ((*link_info->callbacks->undefined_symbol)
  80.          (link_info, bfd_asymbol_name (symbol),
  81.           input_section->owner, input_section, reloc->address)))
  82.         abort ();
  83.       value = 0;
  84.     }
  85.     }
  86.   else 
  87.     {
  88.       value = symbol->value +
  89.     symbol->section->output_offset +
  90.       symbol->section->output_section->vma;
  91.     }
  92.   
  93.   /* Add the value contained in the relocation */
  94.   value += reloc->addend;
  95.   
  96.   return value;
  97. }
  98.  
  99. void
  100. bfd_perform_slip(abfd, slip, input_section, value)
  101.      bfd *abfd;
  102.      unsigned int slip;
  103.      asection *input_section;
  104.      bfd_vma value;
  105. {
  106.   asymbol **s;
  107.  
  108.   s = _bfd_generic_link_get_symbols (abfd);
  109.   BFD_ASSERT (s != (asymbol **) NULL);
  110.  
  111.   /* Find all symbols past this point, and make them know
  112.      what's happened */
  113.   while (*s) 
  114.     {
  115.       asymbol *p = *s;
  116.       if (p->section == input_section) 
  117.     {
  118.       /* This was pointing into this section, so mangle it */
  119.       if (p->value > value)
  120.         {
  121.           p->value -= slip;
  122.           if (p->udata != NULL)
  123.         {
  124.           struct generic_link_hash_entry *h;
  125.  
  126.           h = (struct generic_link_hash_entry *) p->udata;
  127.           BFD_ASSERT (h->root.type == bfd_link_hash_defined);
  128.           h->root.u.def.value -= slip;
  129.           BFD_ASSERT (h->root.u.def.value == p->value);
  130.         }
  131.         }
  132.     }
  133.       s++;
  134.     }    
  135. }
  136.  
  137. boolean 
  138. bfd_coff_reloc16_relax_section (abfd, i, link_info, again)
  139.      bfd *abfd;
  140.      asection *i;
  141.      struct bfd_link_info *link_info;
  142.      boolean *again;
  143. {
  144.   /* Get enough memory to hold the stuff */
  145.   bfd *input_bfd = i->owner;
  146.   asection *input_section = i;
  147.   int shrink = 0 ;
  148.   long reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
  149.   arelent **reloc_vector = NULL;
  150.   long reloc_count;
  151.  
  152.   /* We only run this relaxation once.  It might work to run it more
  153.      often, but it hasn't been tested.  */
  154.   *again = false;
  155.  
  156.   if (reloc_size < 0)
  157.     return false;
  158.  
  159.   reloc_vector = (arelent **) malloc (reloc_size);
  160.   if (!reloc_vector && reloc_size > 0)
  161.     {
  162.       bfd_set_error (bfd_error_no_memory);
  163.       return false;
  164.     }
  165.  
  166.   /* Get the relocs and think about them */
  167.   reloc_count =
  168.     bfd_canonicalize_reloc (input_bfd, input_section, reloc_vector,
  169.                 _bfd_generic_link_get_symbols (input_bfd));
  170.   if (reloc_count < 0)
  171.     {
  172.       free (reloc_vector);
  173.       return false;
  174.     }
  175.  
  176.   if (reloc_count > 0)
  177.     {
  178.       arelent **parent;
  179.       for (parent = reloc_vector; *parent; parent++) 
  180.     {
  181.       shrink = bfd_coff_reloc16_estimate (abfd, input_section,
  182.                           *parent, shrink, link_info);
  183.     }
  184.     }
  185.  
  186.   input_section->_cooked_size -= shrink;  
  187.   free((char *)reloc_vector);
  188.   return true;
  189. }
  190.  
  191. bfd_byte *
  192. bfd_coff_reloc16_get_relocated_section_contents(in_abfd,
  193.                         link_info,
  194.                         link_order,
  195.                         data,
  196.                         relocateable,
  197.                         symbols)
  198.      bfd *in_abfd;
  199.      struct bfd_link_info *link_info;
  200.      struct bfd_link_order *link_order;
  201.      bfd_byte *data;
  202.      boolean relocateable;
  203.      asymbol **symbols;
  204. {
  205.   /* Get enough memory to hold the stuff */
  206.   bfd *input_bfd = link_order->u.indirect.section->owner;
  207.   asection *input_section = link_order->u.indirect.section;
  208.   long reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
  209.   arelent **reloc_vector;
  210.   long reloc_count;
  211.  
  212.   if (reloc_size < 0)
  213.     return NULL;
  214.  
  215.   /* If producing relocateable output, don't bother to relax.  */
  216.   if (relocateable)
  217.     return bfd_generic_get_relocated_section_contents (in_abfd, link_info,
  218.                                link_order,
  219.                                data, relocateable,
  220.                                symbols);
  221.  
  222.   /* read in the section */
  223.   if (! bfd_get_section_contents(input_bfd,
  224.                  input_section,
  225.                  data,
  226.                  0,
  227.                  input_section->_raw_size))
  228.     return NULL;
  229.   
  230.   
  231.   reloc_vector = (arelent **)malloc((size_t) reloc_size);
  232.   if (!reloc_vector && reloc_size != 0)
  233.     {
  234.       bfd_set_error (bfd_error_no_memory);
  235.       return NULL;
  236.     }
  237.   
  238.   reloc_count = bfd_canonicalize_reloc (input_bfd, 
  239.                     input_section,
  240.                     reloc_vector,
  241.                     symbols);
  242.   if (reloc_count < 0)
  243.     {
  244.       free (reloc_vector);
  245.       return NULL;
  246.     }
  247.     
  248.   if (reloc_count > 0)
  249.     {
  250.       arelent **parent = reloc_vector;
  251.       arelent *reloc ;
  252.       unsigned int dst_address = 0;
  253.       unsigned int src_address = 0;
  254.       unsigned int run;
  255.       unsigned int idx;
  256.     
  257.       /* Find how long a run we can do */
  258.       while (dst_address < link_order->size) 
  259.     {
  260.       reloc = *parent;
  261.       if (reloc) 
  262.         {
  263.           /* Note that the relaxing didn't tie up the addresses in the
  264.          relocation, so we use the original address to work out the
  265.          run of non-relocated data */
  266.           run = reloc->address - src_address;
  267.           parent++;
  268.         }
  269.       else 
  270.         {
  271.           run = link_order->size - dst_address;
  272.         }
  273.       /* Copy the bytes */
  274.       for (idx = 0; idx < run; idx++)
  275.         {
  276.           data[dst_address++] = data[src_address++];
  277.         }
  278.     
  279.       /* Now do the relocation */
  280.     
  281.       if (reloc) 
  282.         {
  283.           bfd_coff_reloc16_extra_cases (in_abfd, link_info, link_order,
  284.                         reloc, data, &src_address,
  285.                         &dst_address);
  286.         }    
  287.     }
  288.     }
  289.   free((char *)reloc_vector);
  290.   return data;
  291. }
  292.  
  293.